home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / osi / isode / dosisode / DOSISODE80.ZIP / ISODE8.WRK / UNIX / LIB / POPEN.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-18  |  393 b   |  27 lines

  1. #include <stdio.h>
  2.  
  3. FILE *popen(command,type)
  4. const char *command,*type;
  5. {
  6.     printf("popen called\n");
  7. }
  8.  
  9. int pclose(stream)
  10. FILE *stream;
  11. {
  12.     printf("pclose called\n");
  13. }
  14.  
  15. int sys(cmd,sysinput,sysoutput)
  16. char *cmd,*sysinput,*sysoutput;
  17. {
  18.     printf("sys called\n");
  19. }
  20.  
  21. syscall(number,arg1,arg2,arg3)
  22. int number;
  23. char *arg1, *arg2, *arg3;
  24. {
  25.     printf("syscall called\n");
  26. }
  27.